home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gxfcache.h < prev    next >
C/C++ Source or Header  |  1997-03-06  |  9KB  |  246 lines

  1. /* Copyright (C) 1992, 1995, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxfcache.h */
  20. /* Definitions for Ghostscript font and character caches */
  21. /* Requires gsfont.h */
  22. #include "gsuid.h"
  23. #include "gsxfont.h"
  24. #include "gxbcache.h"
  25.  
  26. /* ------ Font/matrix pair cache entry ------ */
  27.  
  28. #ifndef cached_fm_pair_DEFINED
  29. #  define cached_fm_pair_DEFINED
  30. typedef struct cached_fm_pair_s cached_fm_pair;
  31. #endif
  32.  
  33. /*
  34.  * Define the entry for a cached (font,matrix) pair.  If the UID
  35.  * is valid, the font pointer may be 0, since we keep entries even for
  36.  * fonts unloaded by a restore if they have valid UIDs.
  37.  * We can't use the address of the pair for the hash value,
  38.  * since the GC may move pairs in storage, so we create a hash
  39.  * when we allocate the pair initially.
  40.  */
  41. struct cached_fm_pair_s {
  42.     gs_font *font;            /* base font */
  43.     gs_uid UID;            /* font UniqueID or XUID */
  44.     uint hash;            /* hash for this pair */
  45.     float mxx, mxy, myx, myy;    /* transformation */
  46.     int num_chars;            /* # of cached chars with this */
  47.                     /* f/m pair */
  48.     bool xfont_tried;        /* true if we looked up an xfont */
  49.     gx_xfont *xfont;        /* the xfont (if any) */
  50.     gs_memory_t *memory;        /* the allocator for the xfont */
  51.     uint index;            /* index of this pair in mdata */
  52. };
  53. #define private_st_cached_fm_pair() /* in gxccman.c */\
  54.   gs_private_st_ptrs3(st_cached_fm_pair, cached_fm_pair,\
  55.     "cached_fm_pair", fm_pair_enum_ptrs, fm_pair_reloc_ptrs,\
  56.     font, UID.xvalues, xfont)
  57. #define private_st_cached_fm_pair_elt()    /* in gxccman.c */\
  58.   gs_private_st_element(st_cached_fm_pair_element, cached_fm_pair,\
  59.     "cached_fm_pair[]", fm_pair_element_enum_ptrs, fm_pair_element_reloc_ptrs,\
  60.     st_cached_fm_pair)
  61. /* If font == 0 and UID is invalid, this is a free entry. */
  62. #define fm_pair_is_free(pair)\
  63.   ((pair)->font == 0 && !uid_is_valid(&(pair)->UID))
  64. #define fm_pair_set_free(pair)\
  65.   ((pair)->font = 0, uid_set_invalid(&(pair)->UID))
  66. #define fm_pair_init(pair)\
  67.   (fm_pair_set_free(pair), (pair)->xfont_tried = false, (pair)->xfont = 0)
  68.  
  69. /* The font/matrix pair cache itself. */
  70. typedef struct fm_pair_cache_s {
  71.     uint msize, mmax;        /* # of cached font/matrix pairs */
  72.     cached_fm_pair *mdata;
  73.     uint mnext;            /* rover for allocating font/matrix pairs */
  74. } fm_pair_cache;
  75.  
  76. /* ------ Character cache entry ------- */
  77.  
  78. /* Define the allocation chunk type. */
  79. typedef gx_bits_cache_chunk char_cache_chunk;
  80.  
  81. /*
  82.  * This is a subclass of the entry in a general bitmap cache.
  83.  * The character cache contains both used and free blocks.
  84.  * All blocks have a common header; free blocks have ONLY the header.
  85.  */
  86. typedef gx_cached_bits_head cached_char_head;
  87. #define cc_head_is_free(cch) cb_head_is_free(cch)
  88. #define cc_head_set_free(cch) cb_head_set_free(cch)
  89. /*
  90.  * Define the cache entry for an individual character.
  91.  * The bits, if any, immediately follow the structure;
  92.  * characters with only xfont definitions may not have bits.
  93.  * An entry is 'real' if it is not free and if pair != 0.
  94.  * We maintain the invariant that at least one of the following must be true
  95.  * for all real entries:
  96.  *    - cc_has_bits(cc);
  97.  *    - cc->xglyph != gx_no_xglyph && cc_pair(cc)->xfont != 0.
  98.  */
  99. #ifndef cached_char_DEFINED
  100. #  define cached_char_DEFINED
  101. typedef struct cached_char_s cached_char;
  102. #endif
  103. struct cached_char_s {
  104.  
  105.         /* The code, font/matrix pair, wmode, and depth */
  106.         /* are the 'key' in the cache. */
  107.         /* gx_cached_bits_common includes depth. */
  108.  
  109.     gx_cached_bits_common;        /* (must be first) */
  110. #define cc_depth(cc) ((cc)->cb_depth)
  111. #define cc_set_depth(cc, d) ((cc)->cb_depth = (d))
  112.     cached_fm_pair *pair;
  113. #define cc_pair(cc) ((cc)->pair)
  114. #define cc_set_pair_only(cc, p) ((cc)->pair = (p))
  115.     gs_glyph code;            /* glyph code */
  116.     byte wmode;            /* writing mode (0 or 1) */
  117.  
  118.         /* The following are neither 'key' nor 'value'. */
  119.  
  120.     char_cache_chunk *chunk;    /* chunk where this char */
  121.                     /* is allocated */
  122.     uint loc;            /* relative location in chunk */
  123.     uint pair_index;        /* index of pair in mdata */
  124.  
  125.         /* The rest of the structure is the 'value'. */
  126.         /* gx_cached_bits_common has width, height, raster, */
  127.         /* shift (not used here), id. */
  128.  
  129. #define cc_raster(cc) ((cc)->raster)
  130. #define cc_set_raster(cc, r) ((cc)->raster = (r))
  131.     gx_xglyph xglyph;        /* the xglyph for the xfont, if any */
  132.     gs_fixed_point wxy;        /* width in device coords */
  133.     gs_fixed_point offset;        /* (-llx, -lly) in device coords */
  134. };
  135. #define cc_is_free(cc) cc_head_is_free(&(cc)->head)
  136. #define cc_set_free(cc) cc_head_set_free(&(cc)->head)
  137. #define cc_set_pair(cc, p)\
  138.   ((cc)->pair_index = ((cc)->pair = (p))->index)
  139. #define cc_has_bits(cc) ((cc)->id != gx_no_bitmap_id)
  140. /*
  141.  * Memory management for cached_chars is a little unusual.
  142.  * cached_chars are never instantiated on their own; a pointer to
  143.  * a cached_char points into the middle of a cache chunk.
  144.  * Consequently, such pointers can't be traced or relocated
  145.  * in the usual way.  What we do instead is allocate the cache
  146.  * outside garbage-collectable space; we do all the tracing and relocating
  147.  * of pointers *from* the cache (currently only the head.pair pointer)
  148.  * when we trace or relocate the font "directory" that owns the cache.
  149.  *
  150.  * Since cached_chars are (currently) never instantiated on their own,
  151.  * they only have a descriptor so that cached_char_ptr can trace them.
  152.  */
  153. #define private_st_cached_char() /* in gxccman.c */\
  154.   gs_private_st_composite(st_cached_char, cached_char, "cached_char",\
  155.     cached_char_enum_ptrs, cached_char_reloc_ptrs)
  156. #define private_st_cached_char_ptr() /* in gxccman.c */\
  157.   gs_private_st_composite(st_cached_char_ptr, cached_char *,\
  158.     "cached_char *", cc_ptr_enum_ptrs, cc_ptr_reloc_ptrs)
  159. #define private_st_cached_char_ptr_elt() /* in gxccman.c */\
  160.   gs_private_st_element(st_cached_char_ptr_element, cached_char *,\
  161.     "cached_char *[]", cc_ptr_element_enum_ptrs, cc_ptr_element_reloc_ptrs,\
  162.     st_cached_char_ptr)
  163.  
  164. /*
  165.  * Define the alignment and size of the cache structures.
  166.  */
  167. #define align_cached_char_mod align_cached_bits_mod
  168. #define sizeof_cached_char\
  169.   round_up(sizeof(cached_char), align_cached_char_mod)
  170. #define cc_bits(cc) ((byte *)(cc) + sizeof_cached_char)
  171. #define cc_const_bits(cc) ((const byte *)(cc) + sizeof_cached_char)
  172.  
  173. /* Define the hash index for a (glyph, fm_pair) key. */
  174. #define chars_head_index(glyph, pair)\
  175.   ((uint)(glyph) * 59 + (pair)->hash * 73)    /* scramble it a bit */
  176.  
  177. /* ------ Character cache ------ */
  178.  
  179. /*
  180.  * So that we can find all the entries in the cache without
  181.  * following chains of pointers, we use open hashing rather than
  182.  * chained hashing for the lookup table.
  183.  */
  184. typedef struct char_cache_s {
  185.         /* gx_bits_cache_common provides chunks, cnext, */
  186.         /* bsize, csize. */
  187.     gx_bits_cache_common;
  188.     gs_memory_t *memory;
  189.     cached_char **table;        /* hash table */
  190.     uint table_mask;        /* (a power of 2 -1) */
  191.     uint bmax;            /* max bsize */
  192.     uint cmax;            /* max csize */
  193.     uint bspace;            /* space allocated for chunks */
  194.     uint lower;            /* min size at which cached chars */
  195.                     /* should be stored compressed */
  196.     uint upper;            /* max size of a single cached char */
  197.     gs_glyph_mark_proc_t mark_glyph;
  198.     void *mark_glyph_data;        /* closure data */
  199. } char_cache;
  200.  
  201. /* ------ Font/character cache ------ */
  202.  
  203. /* A font "directory" (font/character cache manager). */
  204. struct gs_font_dir_s {
  205.  
  206.         /* Original (unscaled) fonts */
  207.  
  208.     gs_font *orig_fonts;
  209.  
  210.         /* Scaled font cache */
  211.  
  212.     gs_font *scaled_fonts;        /* list of recently scaled fonts */
  213.     uint ssize, smax;
  214.  
  215.         /* Font/matrix pair cache */
  216.  
  217.     fm_pair_cache fmcache;
  218.  
  219.         /* Character cache */
  220.  
  221.     char_cache ccache;
  222.         /* Scanning cache for GC */
  223.     uint enum_index;   /* index (N) */
  224.     uint enum_offset;  /* ccache.table[offset] is N'th non-zero entry */
  225. };
  226. #define private_st_font_dir()    /* in gsfont.c */\
  227.   gs_private_st_composite(st_font_dir, gs_font_dir, "gs_font_dir",\
  228.     font_dir_enum_ptrs, font_dir_reloc_ptrs)
  229.  
  230. /* Enumerate the pointers in a font directory, except for orig_fonts. */
  231. #define font_dir_do_ptrs(m)\
  232.   /*m(-,orig_fonts)*/ m(0,scaled_fonts) m(1,fmcache.mdata)\
  233.   m(2,ccache.table) m(3,ccache.mark_glyph_data)
  234. #define st_font_dir_max_ptrs 4
  235.  
  236. /* Character cache procedures (in gxccache.c and gxccman.c) */
  237. int gx_char_cache_alloc(P6(gs_memory_t *, gs_font_dir *, uint, uint, uint, uint));
  238. void gx_char_cache_init(P1(gs_font_dir *));
  239. void gx_purge_selected_cached_chars(P3(gs_font_dir *, bool (*)(P2(cached_char *, void *)), void *));
  240. cached_fm_pair *
  241.     gx_lookup_fm_pair(P2(gs_font *, const gs_state *));
  242. cached_fm_pair *
  243.     gx_add_fm_pair(P4(gs_font_dir *, gs_font *, const gs_uid *, const gs_state *));
  244. void gx_lookup_xfont(P3(const gs_state *, cached_fm_pair *, int));
  245. void gs_purge_fm_pair(P3(gs_font_dir *, cached_fm_pair *, int));
  246.